/* ================= ROOT & RESET ================= */
:root {
  --primary: #e53935;
  --white: #ffffff;
  --overlay: rgba(0, 0, 0, 0.45);
  --glass: rgba(255, 255, 255, 0.18);
  --text-dark: #111827;
  --text-muted: #6b7280;
  --bg-light: #f7f8f6;
  --border-light: #e5e7eb;
  --transition: 0.3s ease;
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.04);
  --shadow-large: 0 30px 60px rgba(0, 0, 0, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--white);
  overflow-x: hidden;
}

/* ================= COMMON ================= */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 80px 24px;
  width: 100%;
}

.section-label {
  display: inline-block;
  font-size: 14px;
  color: var(--primary);
  margin-bottom: 16px;
  position: relative;
  padding-left: 40px;
}

.section-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--primary);
}

.section-label-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.section-label-center::before,
.section-label-center::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--primary);
}

/* ================= HERO ================= */
.hero {
  min-height: 100vh;
  background: linear-gradient(var(--overlay), var(--overlay)),
    url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.brand {
  position: absolute;
  top: 30px;
  left: 100px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary);
  z-index: 20;
}

.lang-btn {
  background: var(--primary);
  padding: 10px 18px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.top-right-controls {
  position: absolute;
  top: 20px;
  right: 100px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 20;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 12px;
  cursor: pointer;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.navbar {
  position: absolute;
  top: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 15;
}

.nav-pill {
  background: var(--glass);
  backdrop-filter: blur(14px);
  border-radius: 50px;
  padding: 12px 32px;
  display: flex;
  gap: 32px;
}

.nav-pill a {
  text-decoration: none;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  opacity: 0.85;
  transition: var(--transition);
}

.nav-pill a:hover {
  color: var(--primary);
  opacity: 1;
}

.hero-content {
  position: absolute;
  bottom: 90px;
  left: 80px;
  max-width: 620px;
}

.hero-content h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 32px;
}

.buttons {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--primary);
  padding: 16px 36px;
  border-radius: 40px;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-large);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 500;
  text-decoration: none;
  opacity: 0.9;
  transition: var(--transition);
}

.btn-link span {
  position: relative;
}

.btn-link span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--white);
  opacity: 0.6;
}

.arrow-icon {
  font-size: 14px;
  color: var(--white);
  transition: var(--transition);
}

.btn-link:hover {
  opacity: 1;
}

.btn-link:hover .arrow-icon {
  transform: translate(3px, -3px);
}

/* ================= OVERVIEW ================= */
.overview {
  color: var(--text-dark);
}

.overview h2 {
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 20px;
}

.overview-text {
  max-width: 850px;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.8;
  color: var(--text-muted);
}

/* ================= SERVICES ================= */
.services {
  background: var(--bg-light);
  color: var(--text-dark);
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header h2 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  margin-bottom: 12px;
}

.services-header p {
  color: var(--text-muted);
  font-size: clamp(14px, 1.5vw, 16px);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(229, 57, 53, 0.1);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ================= PROCESS ================= */
.process {
  color: var(--text-dark);
}

.process h2 {
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 12px;
}

.process-subtitle {
  max-width: 600px;
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--text-muted);
  margin-bottom: 70px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-light);
}

.process-step {
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.step-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #9ca3af;
  background: var(--white);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.process-step:hover .step-circle {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 0 6px rgba(229, 57, 53, 0.08);
}

.process-step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ================= WHY CHOOSE ================= */
.why-choose {
  background: var(--white);
  color: var(--text-dark);
}

.why-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}

.why-header h2 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  margin-bottom: 14px;
}

.why-header p {
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--text-muted);
  line-height: 1.7;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px 40px;
}

.why-card {
  text-align: center;
}

.why-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: rgba(229, 57, 53, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.why-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ================= STATS ================= */
.stats {
  background: var(--bg-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  text-align: center;
  padding: 60px 24px;
  gap: 30px;
}

.stat-item h3 {
  font-size: clamp(24px, 3vw, 28px);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.stat-item p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ================= CTA ================= */
.cta {
  background: var(--white);
  text-align: center;
}

.cta h2 {
  font-size: clamp(26px, 3.5vw, 32px);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.cta p {
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.7;
  color: var(--text-muted);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-outline {
  padding: 16px 36px;
  border-radius: 40px;
  border: 1.5px solid var(--text-dark);
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
}

.btn-outline:hover {
  background: var(--text-dark);
  color: var(--white);
}

/* ================= TESTIMONIALS ================= */
.testimonials {
  background: var(--bg-light);
  color: var(--text-dark);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 70px;
}

.testimonials-header h2 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  margin-bottom: 12px;
}

.testimonials-header p {
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--text-muted);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 28px;
  box-shadow: var(--shadow-card);
}

.quote-icon {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-footer h4 {
  font-size: 15px;
  font-weight: 600;
}

.testimonial-footer span {
  font-size: 13px;
  color: var(--text-muted);
}

.testimonial-dots {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9ca3af;
  opacity: 0.6;
  cursor: pointer;
  transition: var(--transition);
}

.dot:hover {
  opacity: 0.8;
}

.dot.active {
  width: 20px;
  border-radius: 6px;
  background: var(--primary);
  opacity: 1;
}

/* ================= FINAL CTA ================= */
.final-cta {
  padding: 80px 24px;
  background: var(--white);
}

.final-cta-box {
  max-width: 1100px;
  margin: auto;
  background: linear-gradient(135deg, rgba(229, 57, 53, 0.95), rgba(200, 40, 40, 0.95)),
    url("https://images.unsplash.com/photo-1526378722443-4a77a1f8b6c3");
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  padding: 70px 40px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-large);
}

.final-cta-box h2 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  margin-bottom: 16px;
}

.final-cta-box p {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 30px;
}

.cta-btn {
  display: inline-block;
  background: var(--white);
  color: var(--primary);
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}



/* ================= RESPONSIVE ================= */

/* ---------- Large tablets & small laptops ---------- */
@media (max-width: 1024px) {
  .brand {
    left: 40px;
  }

  .top-right-controls {
    right: 40px;
  }

  .hero-content {
    left: 40px;
    bottom: 70px;
    max-width: 520px;
  }

  .process-steps::before {
    display: none;
  }
}

/* ---------- Tablets ---------- */
@media (max-width: 768px) {
  .container {
    padding: 60px 20px;
  }

  .brand {
    left: 24px;
    top: 26px;
    font-size: 16px;
  }

  .top-right-controls {
    right: 24px;
  }

  .lang-btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  /* Hamburger visible on tablet */
  .hamburger {
    display: flex;
  }

  /* Navbar tablet menu */
  .nav-pill {
    display: none;
    position: absolute;
    top: 70px;
    right: 24px;
    left: 24px;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(14px);
    border-radius: 16px;
    padding: 24px 30px;
    gap: 16px;
    z-index: 100;
  }

  .nav-pill.active {
    display: flex;
  }

  .nav-pill a {
    font-size: 15px;
    padding: 8px 0;
  }

  /* Hero */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
  }

  .hero-content {
    position: relative;
    bottom: auto;
    left: auto;
    padding: 140px 24px 60px;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
  }

  /* Services & Grids */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Process */
  .process-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}


/* ---------- Mobile ---------- */
@media (max-width: 480px) {
  .container {
    padding: 50px 16px;
  }

  /* Brand & language */
  .brand {
    top: 24px;
    left: 16px;
    font-size: 14px;
    letter-spacing: 1.5px;
  }

  .top-right-controls {
    top: 18px;
    right: 16px;
  }

  .lang-btn {
    padding: 8px 12px;
    font-size: 11px;
    gap: 6px;
  }

  /* Hamburger */
  .hamburger {
    display: flex;
    padding: 10px;
  }

  .hamburger span {
    width: 20px;
  }

  /* Navbar mobile menu */
  .nav-pill {
    top: 65px;
    right: 16px;
    left: 16px;
    padding: 20px 24px;
    gap: 14px;
  }

  .nav-pill a {
    font-size: 14px;
  }

  /* Hero */
  .hero {
    min-height: 100vh;
    background-position: center top;
  }

  .hero-content {
    padding: 120px 16px 50px;
  }

  .hero-content h1 {
    font-size: 32px;
    line-height: 1.15;
    margin-bottom: 16px;
  }

  .hero-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 28px;
  }

  .btn-primary {
    padding: 14px 24px;
    font-size: 14px;
    width: 100%;
  }

  .btn-link {
    font-size: 14px;
  }

  /* Section labels */
  .section-label {
    font-size: 12px;
    padding-left: 32px;
  }

  .section-label::before {
    width: 24px;
  }

  .section-label-center {
    font-size: 12px;
  }

  .section-label-center::before,
  .section-label-center::after {
    width: 24px;
  }

  /* Overview */
  .overview h2 {
    font-size: 28px;
  }

  .overview-text {
    font-size: 14px;
  }

  /* Services */
  .services-header h2 {
    font-size: 24px;
  }

  .services-header p {
    font-size: 14px;
  }

  .service-card {
    padding: 24px 20px;
    border-radius: 14px;
  }

  .service-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .service-card h3 {
    font-size: 16px;
  }

  .service-card p {
    font-size: 13px;
  }

  /* Process */
  .process h2 {
    font-size: 28px;
  }

  .process-subtitle {
    font-size: 14px;
    margin-bottom: 40px;
  }

  .process-steps {
    gap: 28px;
  }

  .step-circle {
    width: 44px;
    height: 44px;
    font-size: 14px;
  }

  .process-step h3 {
    font-size: 16px;
  }

  .process-step p {
    font-size: 13px;
  }

  /* Why Choose */
  .why-header h2 {
    font-size: 24px;
  }

  .why-header p {
    font-size: 14px;
  }

  .why-card {
    text-align: left;
  }

  .why-icon {
    width: 44px;
    height: 44px;
    margin: 0 0 16px 0;
  }

  .why-card h3 {
    font-size: 16px;
  }

  .why-card p {
    font-size: 13px;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px 16px;
    gap: 20px;
  }

  .stat-item h3 {
    font-size: 22px;
  }

  .stat-item p {
    font-size: 12px;
  }

  /* CTA */
  .cta h2 {
    font-size: 24px;
  }

  .cta p {
    font-size: 14px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn-outline,
  .cta-buttons .btn-primary {
    width: 100%;
    text-align: center;
  }

  /* Testimonials */
  .testimonials-header h2 {
    font-size: 24px;
  }

  .testimonials-header p {
    font-size: 14px;
  }

  .testimonial-card {
    padding: 28px 20px;
    border-radius: 14px;
  }

  .quote-icon {
    font-size: 28px;
  }

  .testimonial-text {
    font-size: 14px;
  }

  .testimonial-footer h4 {
    font-size: 14px;
  }

  .testimonial-footer span {
    font-size: 12px;
  }

  /* Final CTA */
  .final-cta {
    padding: 50px 16px;
  }

  .final-cta-box {
    padding: 40px 20px;
    border-radius: 16px;
  }

  .final-cta-box h2 {
    font-size: 24px;
  }

  .final-cta-box p {
    font-size: 14px;
  }

  .cta-btn {
    padding: 12px 28px;
    font-size: 14px;
  }
}


/* ---------- Small phones ---------- */
@media (max-width: 360px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .brand {
    font-size: 13px;
  }

  .lang-btn {
    font-size: 10px;
    padding: 6px 10px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stat-item h3 {
    font-size: 20px;
  }
}
